* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../media/Montserrat-Font.ttf') format('truetype');
}

body {
    font-family: 'Montserrat', sans-serif;
    background-image: url("../media/bg-gradient.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.container {
    max-width: 450px;
    margin: 0 auto;
    padding: 10px;
}

.card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    margin-bottom: 20px;
    justify-content: center;
    text-align: center;
}

.signinlogo {
    background-size: contain;
    max-width: 100%;
    height: auto;
    max-height: 100px;
    background-repeat: no-repeat;
    background-position: center; 
    align-items: center;
}

.ticket-up {
    background-image: url("../media/Ticket-Your-Number-.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-clip: border-box;
    padding: 60px;
    text-align: center;
}

.ticket-down {
    background-image: url("../media/Ticket-Now-Serving.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-clip: border-box;
    padding: 46px;
    text-align: center;
    font-weight: 500;
}


h1 {
    font-size: 2em;
    text-align: center;
    color: #333;
}

h3 {
    font-size: 1.4em;
    color: #333;
    margin-top: 10px;
    margin-bottom: 10px;
}

h2 {
    font-weight: bold;
    font-size: xx-large;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

input {
    width: 90%;
    padding: 12px;
    padding-left: 22px;
    padding-right: 22px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

input:focus {
    outline: none;
    border-color: #bce4e2;
}

.btn {
    width: 90%;
    background: #00aba1;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn:hover {
    background: #0056b3;
}

.btn-success {
    background: #28a745;
}

.btn-danger {
    background: #dc3545;
}

.queue-display {
    text-align: center;
    padding: 20px;
}

.current-number {
    font-size: 4em;
    font-weight: bold;
    color: #333;
}

.queue-info {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.queue-list {
    list-style: none;
    margin-top: 20px;
}

.queue-list li {
    padding: 10px;
    margin: 5px 0;
    background: #f8f9fa;
    border-radius: 5px;
    border-left: 4px solid #667eea;
}

.admin-controls {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.queue-display {
    text-align: center;
    padding: 20px;
}

.info-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    min-width: 200px;
    border-left: 4px solid #667eea;
}

.info-item .label {
    display: block;
    font-size: 1em;
    color: #666;
    margin-bottom: 5px;
}

.info-item .value {
    display: block;
    font-size: 2em;
    font-weight: bold;
    color: #333;
}

.input {
    background-color: #f2f2f2;
    border-color: transparent;
}

.input::placeholder{
    color: #b9bcbc;
}

/* Responsive design */
@media (max-width: 768px) {
    .queue-info {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .info-item {
        min-width: 250px;
    }
}
